Advanced Counting
CSE 16: Applied Discrete Mathematics
Instructor: Owen Arden
Winter 2023
Generating
permutations and combinations
Often in addition to counting the number of permutations or
combinations (subsets), we also want to generate them.
For example, we could try finding all the anagrams of “triangle” by
generating the permutations of the letters and looking them up in a
dictionary.
- For example, here are some permutations of
“triangle” that are words in English:
- (a,l,e,r,t,i,n,g)
- (a,l,t,e,r,i,n,g)
- (i,n,t,e,g,r,a,l)
- (r,e,l,a,t,i,n,g)
- (t,a,n,g,l,i,e,r)
- (t,r,i,a,n,g,l,e)
Generating in permutations
in order
If we sort permutations according to a well-defined order, then we
can ensure we generate each permutation exactly once.
- Lexicographic order
-
Lexicographic order of a collection of n-tuples compares each
position of the n-tuple using a well-defined order. Two n-tuples are
ordered relative to each other based on the order of the first non-equal
position.
Example: (a,l,e,r,t,i,n,g) is sorted before
(a,l,t,e,r,i,n,g) since e comes before t.
Generation algorithm
For a given order (e.g., lexicographic), if we can generate the
“next” permutation for any given permutation, then a simple algorithm
for generating all permutations is:
let p = (1,2,...,n-1,n) in
print p
while (p != (n,n-1,...,2,1) do
p := next_perm(p)
print p
end
- We initialize p with the “first” or “smallest”
n-tuple
(1,2,...,n-1,n)
.
- Then we generate the next smallest n-tuple with
next_perm(p)
- We continue step 2 until we generate the “largest”
n-tuple
(n,n-1,...,2,1)
Ok, but what is this magical next_perm(p)
??? (ZyBook
animation)
Generating the next
permutation
let next_perm(p) =
k := -1
for (i := len(p)-1; i > 0; p--)
if (p[i] > p[i-1])
k := i
break
if (k==-1) return p
j:=0
for (i := len(p)-1; i > k; p--)
if (p[i] > p[k] && p[i] < p[j])
j := i
pj := p[j]
pk := p[k]
p[j] := pk
p[k] := pj
pleft := p[..k]
pright := reverse(p[k+1..])
return pleft ++ pright
Generating r-subsets
The order of elements in subsets doesn’t matter, but we can still
sort subsets by using a well-defined order to put each subset in a
canonical (or unique) form.
Example: As sets, {2,1,3}
and
{3,1,2}
are equal. If we write all sets with their
elements sorted lexicographically, it will be easier to define
a lexicographic order on subsets. So,
{2,1,3} < {1,4,2}
since
{1,2,3} < {1,2,4}
.
Generating r-subsets
For a given and , we can generate all r-subsets of
{1,2,...,n-1,n}
with an algorithm similar to the one for
permutations:
let s = (1,2,...,r-1,r) in
print s
while (s != (n-r+1,...,n-1,n) do
s := next_subset(n,s)
print s
end
Notice the different starting and ending n-tuples. Why are these the
smallest/largest?
The next r-subset
(Zybook animation)
Combinatorial identies
Theorem: For any integers and
where :
Algebraic proof:
Combinatorial identies
Theorem: For any integers and
where :
Combinatorial proof:
- There are ways to
select items to include in a
k-subset from a set of items.
Equivalently, there are ways to select items
to exclude from a k-subset from a set of items. Therefore,
Binomial coefficients
Multiplying out a binomial like results in some terms we can add
together:
It turns out these binomial coefficients can be calculated
using combinatorial techniques.
- Binomial Theorem:
-
For any non-negative integer and
any real numbers and
-
Combinatorial identities
Theorem:
Proof: Applying the binomial theorem with and , we have
Combinatorial identities
Theorem:
Proof. Observe
By the binomial theorem with and ,
Combinatorial identities
- Pascal’s identity
-
Proof. Suppose is the number of k-subsets of a set . Each k-subset
either contains or does not
contain .
The number of
k-subsets that do not contain
is since we
choose from .
The
number of k-subsets that do contain is since we choose elements from . Therefore the total number
of k-subsets of is
Pigeonhole principle
- Theorem:
-
If a function has domain of size
at least , and a codomain of
size at most , where is a positive integer, then is not injective (one-to-one).
Proof. }For contradiction, assume is injective. Therefore each element in the domain maps to one of
elements in the codomain.
However, ’s codomain has size at
most . Therefore is not injective.
Advanced Counting CSE 16: Applied Discrete Mathematics Instructor: Owen Arden Winter 2023